DC.css(stringPropertyOrKeyValueMap, stringOrNumberValue, boolSave) Description: Sets one or more style properties on DC.wrapper, or returns the computed value of a style property on DC.wrapper. Returns: DC Object, or the specified style property value. Note: When boolSave is set to true, the new properties will be merged with DC.style and applied every time the DC object is opened after that point, unless these too are overwritten. Example: // Get a style property value var positionProp = DC.css("position"); // Set one style property on DC.wrapper DC.css("position", "absolute"); // Set one style property on DC.wrapper, and save it by merging with DC.style. DC.css("position", "absolute", true); // Set multiple style properties on DC.wrapper. DC.css({ position: "absolute", padding: "5px 7px", backgroundColor: "yellow", color: "red" }); // Set multiple style properties on DC.wrapper, and save them within DC.style. DC.css({ position: "absolute", padding: "5px 7px", backgroundColor: "yellow", color: "red" }, true);